summaryrefslogtreecommitdiff
path: root/app/[lng]/partners/repository/page.tsx
blob: 51c0fae583917869415d1440157e8e94300196c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { CompanyAuthForm } from "@/components/login/partner-auth-form"
import { Suspense } from "react"

export default function RepositiryPage() {
    return (
        <Suspense fallback={<div>Loading ...</div>}>
            <CompanyAuthForm />
        </Suspense>

    )
}